docs: don't use structfield tags
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Mon, 27 Jan 2014 22:13:43 +0000 (17:13 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Tue, 28 Jan 2014 00:59:58 +0000 (19:59 -0500)
gdk/gdkcolor.c
gdk/gdkrgba.c
gtk/gtkbox.c
gtk/gtkdialog.c
gtk/gtktreemodel.h

index 34e1e201f8fcf0a65ad742efd3e8cdd506bd1eef..e2371c93fffef36711defee30bdb110c3bac61eb 100644 (file)
@@ -128,8 +128,7 @@ G_DEFINE_BOXED_TYPE (GdkColor, gdk_color,
  * @color: (out): the #GdkColor to fill in
  *
  * Parses a textual specification of a color and fill in the
- * <structfield>red</structfield>, <structfield>green</structfield>,
- * and <structfield>blue</structfield> fields of a #GdkColor.
+ * @red, @green, and @blue fields of a #GdkColor.
  *
  * The string can either one of a large set of standard names
  * (taken from the X11 <filename>rgb.txt</filename> file), or
index e52410657d6415b34275cc6eb92780e3616cb014..254abf3945da4c7fbdc07301e499df9d31086a81 100644 (file)
@@ -138,9 +138,7 @@ parse_rgb_value (const gchar  *str,
  * @spec: the string specifying the color
  *
  * Parses a textual representation of a color, filling in
- * the <structfield>red</structfield>, <structfield>green</structfield>,
- * <structfield>blue</structfield> and <structfield>alpha</structfield>
- * fields of the @rgba #GdkRGBA.
+ * the @red, @green, @blue and @alpha fields of the @rgba #GdkRGBA.
  *
  * The string can be either one of:
  * <itemizedlist>
index 916079a61eb2ce099644ec0dd5c9fb4801ff823b..4ec256f8b6b095cf191fa8f34bc4391142e643d6 100644 (file)
@@ -1833,8 +1833,7 @@ _gtk_box_get_spacing_set (GtkBox *box)
  *   the list
  *
  * Moves @child to a new @position in the list of @box children.
- * The list is the <structfield>children</structfield> field of
- * #GtkBox-struct, and contains both widgets packed #GTK_PACK_START
+ * The list contains widgets packed #GTK_PACK_START
  * as well as widgets packed #GTK_PACK_END, in the order that these
  * widgets were added to @box.
  *
index 49babdb2a000de54edf7d385e363b889fc526b13..5bc5b3a77c1fe3353bc35c451d351513197a99a2 100644 (file)
@@ -57,7 +57,7 @@
  * GTK+ treats a dialog as a window split vertically. The top section is a
  * #GtkVBox, and is where widgets such as a #GtkLabel or a #GtkEntry should
  * be packed. The bottom area is known as the
- * <structfield>action_area</structfield>. This is generally used for
+ * <quote>action_area</quote>. This is generally used for
  * packing buttons into the dialog which may perform functions such as
  * cancel, ok, or apply.
  *
index 6cb64e1759d4192edb1bd4420aeba5b9dadecb98..d702b3b5a86d7cea0229b5a5f11d8919e008ef35 100644 (file)
@@ -86,8 +86,8 @@ typedef enum
  *
  * The #GtkTreeIter is the primary structure
  * for accessing a #GtkTreeModel. Models are expected to put a unique
- * integer in the <structfield>stamp</structfield> member, and put
- * model-specific data in the three <structfield>user_data</structfield>
+ * integer in the @stamp member, and put
+ * model-specific data in the three @user_data
  * members.
  */
 struct _GtkTreeIter